<!-- Guide of Production

Generated by coz on 2/16/2016,
from a template provided by apeman-bud-wiki.

-->

### 01 - Setup for Production

It is recommended to use Docker for production release.
Follow the [Dockerlize instruction](#guide-dockerlize) and setup containers before this.

```bash
# Source env variables for production.
$ . ./bin/env/production.sh
```

### 02 - Start Applications

The start shell starts all applications and keep them as daemon.

```bash
$ ./bin/start.js
```

To check daemon status,

```bash
$ ./bin/show.js
```

To stop,

```bash
$ ./bin/stop.js
```

